HTML and CSS Chapters 1 and 10
Topic 1-HTML Describes The Structure Of Pages
HTML is almost like the bones of the website, it acts as the structure or framework. HTML is started and ended with tags. If you do not close a tag or start a tag none of your code will function. It is important to keep your tags organized to stop confusions.
Topic 2- Understanding CSS
To understand CSS you have to think "inside" the box. imagine when you are designing there is an invisible box around each HTML element. CSS allows you to create rules that affect the appearance of each box and text.
Topic 3- Why Use External Style Sheets
There are several advantages when you use seperate style sheets for CSS. Using seperate style sheets means you dont have to repeat each CSS code saving you a lot of time. Also the HTML code becomes easier to read because you don't have to search through a bunch of CSS rules.